projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53ca0d9
)
* lisp/emacs-lisp/comp.el (comp-final): Clean-up temporary file.
author
Andrea Corallo
<akrl@sdf.org>
Wed, 31 Mar 2021 18:29:32 +0000
(20:29 +0200)
committer
Andrea Corallo
<akrl@sdf.org>
Wed, 31 Mar 2021 18:38:32 +0000
(20:38 +0200)
lisp/emacs-lisp/comp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/comp.el
b/lisp/emacs-lisp/comp.el
index 59e9dbc01382bfd4cb2ccf250ba392b0d660ca81..213eb7b4126e1a05c56e7ab187161ae8d9a5389e 100644
(file)
--- a/
lisp/emacs-lisp/comp.el
+++ b/
lisp/emacs-lisp/comp.el
@@
-3666,7
+3666,9
@@
Prepare every function for final compilation and drive the C back-end."
(call-process (expand-file-name invocation-name
invocation-directory)
nil t t "--batch" "-l" temp-file))
- output
+ (progn
+ (delete-file temp-file)
+ output)
(signal 'native-compiler-error (buffer-string)))
(comp-log-to-buffer (buffer-string))))))))